<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* ====================公共样式========================= */


/* 引入字体 */
/*@font-face {*/
/*	font-family: 'PT-M';*/
/*	src: url('../fonts/FUTURAPTMEDIUM.TTF'),*/
/*		url('../fonts/FUTURAPTMEDIUM.eot'),*/
/*		url('../fonts/FUTURAPTMEDIUM.eot?#iefix') format('embedded-opentype'),*/
/*		url('../fonts/FUTURAPTMEDIUM.TTF') format('truetype'),*/
/*		url('../fonts/FUTURAPTMEDIUM.svg#svgFontName') format('svg');*/
/*}*/

/*@font-face {*/
/*	font-family: 'PT-B';*/
/*	src: url('../fonts/HINTED-FUTURAPT-BOLD.TTF'),*/
/*		url('../fonts/HINTED-FUTURAPT-BOLD.eot'),*/
/*		url('../fonts/HINTED-FUTURAPT-BOLD.eot?#iefix') format('embedded-opentype'),*/
/*		url('../fonts/HINTED-FUTURAPT-BOLD.TTF') format('truetype'),*/
/*		url('../fonts/HINTED-FUTURAPT-BOLD.svg#svgFontName') format('svg');*/
/*}*/

@font-face {
	font-family: 'ALBB-R';
	src: url('../fonts/AlibabaPuHuiTiR.TTF'),
		url('../fonts/AlibabaPuHuiTiR.eot'),
		url('../fonts/AlibabaPuHuiTiR.eot?#iefix') format('embedded-opentype'),
		url('../fonts/AlibabaPuHuiTiR.TTF') format('truetype'),
		url('../fonts/AlibabaPuHuiTiR.svg#svgFontName') format('svg');
}


/*动画效果 所有属性获得过度*/
* {
	transition-property: all;
}

.com-img {
	overflow: hidden;
}

.com-img img {
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
}

.com-img:hover img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
}


.fl {
	float: left;
}

.fr {
	float: right;
}

.show {
	display: block;
}

.hide {
	display: none;
}

.tac {
	text-align: center;
}

.tal {
	text-align: left;
}

.tar {
	text-align: right;
}

.ttu {
	text-transform: uppercase;
}

.pd-40{
	padding: 0.4rem 0;
}

.pd-60{
	padding: 0.6rem 0;
}

/*字母转换为大写*/
.ofh {
	overflow: hidden;
}

.pst-rel {
	position: relative;
}

.pst-abs {
	position: absolute;
}

.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.f-dr {
	/*默认 主轴为水平方向，起点在左端*/
	-webkit-box-orient: horizontal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}

.f-dr-r {
	/*主轴为水平方向，起点在右端*/
	-webkit-box-orient: horizontal;
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.f-dc {
	/*主轴为垂直方向，起点在上沿*/
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.f-dc-r {
	/*主轴为垂直方向，起点在下沿*/
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

.f-as {
	/* 交叉轴的起点对齐 */
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.f-ac {
	/* 交叉轴的中点对齐 */
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.f-ae {
	/* 交叉轴的终点对齐 */
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.f-ab {
	/* 项目的第一行文字的基线对齐 */
	-webkit-box-align: baseline;
	-webkit-align-items: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}

.f-ast {
	/* 交叉轴拉伸对齐 */
	-webkit-align-items: stretch;
	-moz-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

.f-js {
	/* 左对齐 */
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.f-jc {
	/* 居中 */
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.f-je {
	/* 右对齐 */
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.f-jsb {
	/* 两端对齐，项目之间的间隔都相等 */
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.f-jsa { /* 每个项目两侧的间隔相等。所以，项目之间的间隔比项目与边框的间隔大一倍 */
	-webkit-box-pack: distribute;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.f-warp {
	/* 换行，第一行在上方 */
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

.f-warp-r {
	/* 换行，在第一行的下方 */
	-webkit-flex-wrap: wrap-reverse;
	-moz-flex-wrap: wrap-reverse;
	-ms-flex-wrap: wrap-reverse;
	-o-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
}


.col-2 {
	width: 50%;
	float: left;
}

.col-3 {
	width: 33.333333%;
	float: left;
}

.col-4 {
	width: 25%;
	float: left;
}

.col-5 {
	width: 20%;
	float: left;
}

.col-6 {
	width: 16.6666%;
	float: left;
}

.w14 {
	width: 1440px;
	max-width: 92%;
	margin: 0 auto;
}

.w16 {
	width: 1600px;
	max-width: 92%;
	margin: 0 auto;
}

.pc {
	display: block;
}

.mb {
	display: none;
}

.mt {
}

/* 头部 head*/
.zdHead {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 25px 0.5rem;
	box-sizing: border-box;
	z-index: 99;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.zdHead_box {}

.zdHead_logo {
	transition: all 0.48s;
}

.zdHead_logo a {
	display: block;
}

.zdHead_logo img {
	max-width: 100%;
	height: 36px;
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	-ms-transition: height 0.3s;
	-o-transition: height 0.3s;
	transition: height 0.3s;
}

.zdHead_logo_c {
	display: none;
}

.zdHead_nav li {
	position: relative;
	display: inline-block;
	padding: 0 0.3rem;
}

.zdHead_nav a {
	line-height: 68px;
	color: #333;
	font-size: 18px;
	opacity: .8;
	-webkit-transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
	transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.zdHead_nav li.active a,
.zdHead_nav li:hover a,.zdHead.on .zdHead_nav li.active&gt;a{
	color: #ACCE22;
}

.zdHead_nav li .sub {
	position: absolute;
	top: 38px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	background: #fff;
	border-radius: 6px;
	min-width: 189px;
	padding: 10px 0 10px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.48s;
	z-index: -1;
}

/*.zdHead_nav li:last-child .sub {*/
/*	left: auto;*/
/*	transform: translateX(0);*/
/*	right: 0;*/
/*}*/

.zdHead_nav li:hover .sub {
	opacity: 1;
	visibility: inherit;
	z-index: 999;
	top: 68px;
}

.zdHead_nav li .sub a {
	color: #333;
	display: block;
	opacity: 1;
	text-align: center;
	font-size: 16px !important;
	border-bottom: 1px solid #eee;
	line-height: 2;
	padding: 10px 0;
}

.zdHead_nav li .sub a:last-child {
	border-bottom: 0;
}

.zdHead_nav li .sub a:hover {
	color: #acce22;
}

.zdHead_nav a:hover {
	opacity: 1;
}

.zdHead.bg,
.zdHead.on {
	padding: 16px 0.5rem;
	background: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}
.zdHead.pro_on{
	padding: 16px 0.5rem !important;
	background: #fff !important;
	box-shadow: 0 0 15px rgba(0, 0, 0, .2) !important;
}

.zdHead.bg .zdHead_logo img,
.zdHead.on .zdHead_logo img {
	height: 28px;
}

/* .zdHead.bg .zdHead_logo_c,
.zdHead.on .zdHead_logo_c {
	display: block;
}

.zdHead.bg .zdHead_logo_w,
.zdHead.on .zdHead_logo_w {
	display: none;
} */

.zdHead.bg .zdHead_nav a,
.zdHead.on .zdHead_nav a {
	color: #333;
	opacity: 1;
}

.zdHead.bg .zdHead_nav a:hover,
.zdHead.on .zdHead_nav a:hover {
	color: #ACCE22;
}

.zdHead.bg .zdHead_nav .hover,
.zdHead.on .zdHead_nav .hover {
	color: #ACCE22;
}

.zdHead .nav_r {
	margin-left: 0.3rem;
}

.zdHead .language {
	position: relative;
	text-align: center;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	padding-left: 0.18rem;
}

.zdHead .language::before {
	position: absolute;
	content: "";
	width: 2px;
	height: 100%;
	left: 0;
	top: 0;
	margin-left: -0.5px;
	background-color: #333;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.zdHead .language&gt;a {
	position: relative;
	color: #333;
	height: 30px;
	line-height: 30px;
	font-size: 18px;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.zdHead .language&gt;a:after {
	display: inline-block;
	margin-left: 5px;
	content: "\f0d7";
	font-size: 12px;
	font-family: 'fontawesome';
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.zdHead .language.on&gt;a:after {
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
	-ms-transform: rotate(180deg);
}

.zdHead .language&gt;a img {
	width: auto;
	height: 30px;
	margin-right: 0.1rem;
}

.zdHead .language div {
	display: none;
	position: absolute;
	z-index: 2;
	left: 5px;
	top: calc(100% + 20px);
	width: 100%;
	height: auto;
	background: rgba(0, 0, 0, .8);
	text-align: left;
	-webkit-transition: top 0.3s;
	-moz-transition: top 0.3s;
	-ms-transition: top 0.3s;
	-o-transition: top 0.3s;
	transition: top 0.3s;
}

.zdHead.on .language div {
	top: calc(100% + 35px);
}


.zdHead .language div a {
	display: block;
	font-size: 16px;
	padding: 10px 15px;
	color: rgba(255, 255, 255, .8);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	letter-spacing: 0.5px;
}

.zdHead .language div a:hover {
	background-color: #ACCE22;
	color: white;
}

.zdHead .search {
	position: relative;
	margin-right: 0.18rem;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.zdHead .search a {
	display: block;
}

.zdHead .search a img {
	height: 28px;
}

#formsearh {
	position: absolute;
	z-index: 3;
	top: calc(100% + 20px);
	right: -20px;
	width: 320px;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 2px;
	overflow: hidden;
	display: none;
	border: 1px solid #ACCE22;
	-webkit-transition: top 0.3s;
	-moz-transition: top 0.3s;
	-ms-transition: top 0.3s;
	-o-transition: top 0.3s;
	transition: top 0.3s;
}

.zdHead.on #formsearh {
	top: calc(100% + 36px);
}

#formsearh input[type="text"] {
	float: left;
	font-size: 16px;
	height: 42px;
	line-height: 42px;
	padding-left: 15px;
	width: 80%;
	border: none;
	background-color: transparent;
	color: #333;
	box-sizing: border-box;
	overflow: hidden;
}

#formsearh input::-webkit-input-placeholder,
#formsearh textarea::-webkit-input-placeholder {
	color: rgba(255, 255, 255, .5);
	color: #333;
}

#formsearh button {
	float: right;
	width: 20%;
	height: 42px;
	border: none;
	background: url(../images/ico_search_w.png) no-repeat center center;
	background-size: auto 50%;
	color: #fff;
	border-left: 1px solid rgba(255, 255, 255, .2);
	cursor: pointer;
	box-sizing: border-box;
	overflow: hidden;
	background-color: #ACCE22;
}

/* .zdHead.on .language&gt;a {
	color: #333;
} */

/* .zdHead.on .language::before {
	background-color: #333;
}
 */
/* .zdHead .nav_r img.black,
.zdHead.on .nav_r img {
	display: none;
}

.zdHead.on .nav_r img.black {
	display: block;
} */



/* 手机导航 s */
.mobile-inner-header-icon {
	color: #ffffff;
	background: #ACCE22;
	height: 60px;
	font-size: 24px;
	text-align: center;
	float: right;
	width: 60px;
	position: relative;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}

.mobile-inner-header-icon span {
	position: absolute;
	left: calc((100% - 30px) / 2);
	top: calc((100% - 5px) / 2);
	width: 30px;
	height: 3px;
	background-color: #fff;
	transition-duration: 0.5s;
}

.mobile-inner-header-icon span:nth-child(1) {
	transform: translateY(10px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
	transform: translateY(-10px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(3) {
	width: 20px;
}

.mobile-inner-header-icon-click span:nth-child(1) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
}

.mobile-inner-header-icon-out span:nth-child(1) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outsecond;
}

.mobile-inner-nav{
	background: #ACCE22;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 55px;
	left: 0px;
	display: none ;
	overflow-y: auto;
	z-index: 2;
}

.active_mobile span:nth-child(3) {
	opacity: 0;
}

.active_mobile span:nth-child(1) {
	transform: rotate(45deg);
	width: 30px;
}

.active_mobile span:nth-child(2) {
	transform: rotate(-45deg);
	width: 30px;
}

.header-search{
	padding: 0 10px;
}
.header-search form{
	height: 40px;
	border-radius: 20px;
	border: 1px solid #e5e5e5;
	position: relative;
	width: 100%;
	margin: 0.3rem 0 0.2rem;
}
.header-search form input{
	font-size: 14px;
	color: #fff;
	height: 38px;
	line-height: 38px;
	padding: 0 0.2rem;
	box-shadow: none;
	-webkit-appearance: none;
	border-right: 0;
	background: none;
	width: 100%;
}
.header-search form input::placeholder{
	color: white;
	font-size: 14px;
}
.header-search form button{
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 38px;
	line-height: 38px;
	border: 0;
	background-color: transparent;
	color: white;
	font-size: 18px;
}

.subNavBox1 {
	width: 100%;
}
.subNav1 {
	display: block;
	width: 100%;
	border-bottom: 1px solid #cddb95;
	line-height: 50px;
	font-size: 18px;
	color: #555;
	padding: 0 15px;
	background: url(../images/jia1.png) no-repeat 96% center;
	color: #fff;
}
.subNav1 a{
	display: block;
	margin-right: 40px;
}


.currentDt1 {
	background: url(../images/jian1.png) no-repeat 96% center #a3c70f;
}

.navContent1 {
	display: none;
	border-bottom: 1px solid #d6d6d6;
	padding: 10px 0;
	background: #a3c70f;
	overflow: hidden;
}

.navContent1 li {
	line-height: 40px;
}

.navContent1 li a {
	display: block;
	font-size: 16px;
	color: #fff;
	padding-left: 40px;
}

.so-mobile-fl {
	width: 100%;
	padding: 10px 10px 10px 40px;
	font-size: 0;
}

.so-mobile-fl a{
	width: 50%;
	padding-right: 2%;
	display: inline-block;
	padding-bottom: 10px;
	color: #fff;
	position: relative;
	font-size: 16px;
	line-height: 1.3;
	/* padding: 10px 10px 10px 40px; */
}
.so-mobile-fl p{
	padding-bottom: 10px;
}
.so-mobile-fl p a{
	width: 100%;
	margin-bottom: 0;
}


.xg-mobile-bt {
	font-size: 16px;
	padding: 10px 20px;
}

.xg-mobile-bt a {
	color: #fff;
	position: relative;
	padding-left: 20px;
}

.xg-mobile-bt a:before {
	content: '';
	width: 15px;
	height: 15px;
	background: url(../images/m_anniu1.png) no-repeat center;
	position: absolute;
	left: 0;
	top: 2px;
	background-size: cover;
}

/* 手机导航 e */




/* 底部 */
.Footer-wrapper {
	background-color: #e6e6e6;
	background-color: #2d3021;
	background-color: #2a2c1f;
		/* #1e2016 */
}

.Footer-container {
	padding: 0.6rem 0;
}

.Footer-container [class*="foot_item"] {
	/* float: left; */
}

.foot_item1 {
	width: 28%;
	margin-right: 2%;
}

.foot_item1 .foot_logo {
	margin-bottom: 0.35rem;
}

.foot_item1 .foot_logo img {
	/* height: 45px; */
	width: auto;
}

.foot_item1 p {
	padding: 10px 0;
	color: #727171;
	color: white;
	font-size: 16px;
	line-height: 1.2;
	display: flex;
	display: -webkit-flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
}

.foot_item1 p i {
	display: inline-block;
	width: 25px;
	text-align: center;
	margin-right: 0.10rem;
}

.foot_item1 p img {
	display: inline-block;
	width: auto;
}

.foot_item2 {
	width: 50%;
}

.foot_item2 dl {
	max-width: calc(100% / 6);
}

.foot_item2 dl dt {
	margin-bottom: 0.28rem;
}

.foot_item2 dl dt a {
	font-size: 20px;
	/* color: #465351; */
	color: white;
	
}

.foot_item2 dl dd {
	margin-bottom: 0.22rem;
	/* color: #696969; */
	color: #fff;
	opacity: 0.58;
}

.foot_item2 dl dd:last-child {
	margin-bottom: 0;
}

.foot_item2 dl dd a {
	font-size: 16px;
}

.foot_item2 dl dd:hover a,
.foot_item2 dl dt:hover a {
	color: #acce22;
}

.foot_item3 {
	width: 19%;
	margin-left: 1%;
}

.foot_item3 ul {
	font-size: 0;
}

.foot_item3 ul li {
	display: inline-block;
	max-width: calc(100% / 6);
	text-align: center;

}

.foot_item3 ul li a {
	display: inline-block;
}

.foot_item3 ul li a i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.24rem;
	width: 0.4rem;
	height: 0.4rem;
	border-radius: 0.08rem;
	border: 2px solid #ACCE22;
	color: #ACCE22;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.foot_item3 ul li a i:hover {
	background-color: #ACCE22;
	color: white;
}

/* .foot_item3 ul li a img {
	width: auto;
	max-width: 100%;
}
 */
.foot_item3 ul li a:hover {
	-webkit-animation: swing 1s ease;
	-o-animation: swing 1s ease;
	animation: swing 1s ease;
}

.foot_item3 .contact_us {
	display: inline-block;
	width: 1.9rem;
	height: 0.4rem;
	line-height: 0.4rem;
	background-color: #acce22;
	border: 1px solid #ACCE22;
	color: white;
	text-align: center;
	font-size: 0.24rem;
	border-radius: 0.08rem;
	margin-top: 0.25rem;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.foot_item3 .contact_us:hover {
	background-color: white;
	color: #ACCE22;
}

.Copyright {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-top: 1px solid rgba(135, 135, 135, 0.3);
	padding: 18px 0 10px;
	color: #a0a0a0;
	color: #808080;;
	font-size: 16px;
}

.Copyright a:hover {
	color: #ACCE22;
}

@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate(40deg);
		transform: rotate(40deg)
	}

	40% {
		-webkit-transform: rotate(-20deg);
		transform: rotate(-20deg)
	}

	60% {
		-webkit-transform: rotate(10deg);
		transform: rotate(10deg)
	}

	80% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}

	100% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}
}

@keyframes swing {
	20% {
		-webkit-transform: rotate(40deg);
		-ms-transform: rotate(40deg);
		transform: rotate(40deg)
	}

	40% {
		-webkit-transform: rotate(-20deg);
		-ms-transform: rotate(-20deg);
		transform: rotate(-20deg)
	}

	60% {
		-webkit-transform: rotate(10deg);
		-ms-transform: rotate(10deg);
		transform: rotate(10deg)
	}

	80% {
		-webkit-transform: rotate(-10deg);
		-ms-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}

	100% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg)
	}
}

.swing {
	-webkit-transform-origin: top center;
	-ms-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing;
}





/* 中间+共用部分 */

/* banner */
.ind_banner .swiper-pagination-bullet,
.ind_mb_banner .swiper-pagination-bullet {
	opacity: 0.95;
	background-color: white;
}

.ind_banner .swiper-pagination-bullet-active,
.ind_mb_banner .swiper-pagination-bullet-active {
	background-color: #acce22;
}

/* 公共banner */
.com_ban {
	position: relative;
	width: 100%;
	height: 68vh;
	-o-background-size: cover !important;
	background-size: cover !important;
}

.com_ban:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	/* background: rgba(172, 206, 34, 0.2);
	background: rgba(0, 0, 0, 0.2); */
	/* background: rgba(37, 89, 159, 0.28); */
	background: linear-gradient(top, rgb(0,0,0,.06) 20%, rgb(77, 129, 21,.09) 100%);
	background: -webkit-linear-gradient(top, rgb(0,0,0,.06) 20%, rgb(77, 129, 21,.09) 100%);
}

.com_ban .txt {
	position: relative;
	text-align: left;
	display: table;
	width: 100%;
	height: 100%;
	color: #fff;
	padding: 100px 0 0;
}

.com_ban .txt h4 {
	position: relative;
	font-size: 46px;
	font-weight: 400;
}
.com_ban .txt h4::after {
    content: '';
    display: block;
    width: 45px;
    height: 3px;
    background: #ACCE22;
    margin: 12px 0;
}

.com_ban .txt p {
	font-size: 35px;
	text-transform: uppercase;
}

.com_ban .main-sroll {
	font-size: 14px;
	padding-left: 40px;
	position: relative;
	color: #fff;
	height: 28px;
	line-height: 28px;
	margin: 0.8rem 0 0.4rem;
}
.main-sroll:before {
	content: "";
	position: absolute;
	width: 5px;
	height: 5px;
	left: 12px;
	top: 9px;
	background-color: #ACCE22;
	border-radius: 50%;
	z-index: 5;
	-webkit-animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
	-moz-animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
	  -o-animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
	     animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
}


@-webkit-keyframes Tmouse {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-8px);
		transform: translateY(-5px);
	}
}

@-moz-keyframes Tmouse {
	0% {
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		     transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-8px);
		-moz-transform: translateY(-8px);
		     transform: translateY(-8px);
	}
}

@-o-keyframes Tmouse {
	0% {
		-webkit-transform: translateY(0);
		-o-transform: translateY(0);
		   transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-8px);
		-o-transform: translateY(-8px);
		   transform: translateY(-8px);
	}
}

@keyframes Tmouse {
	0% {
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		  -o-transform: translateY(0);
		     transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-8px);
		-moz-transform: translateY(-8px);
		  -o-transform: translateY(-8px);
		     transform: translateY(-8px);
	}
}

.main-sroll:after {
	content: '';
	position: absolute;
	width: 20px;
	height: 30px;
	border-radius: 50px;
	left: 5px;
	background-color: #fff;
	top: -4px;
	opacity: 0.5;
}


.com_ban .sub_nav {
	position: absolute;
	bottom: 0;
	left: 50%;
	background: rgba(255, 255, 255, 0.65);
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.com_ban .sub_nav li {
	position: relative;
	border-right: 1px solid rgba(255, 255, 255, 0.8);
	-webkit-flex-grow: 1;
	-moz-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	text-align: center;
}

.com_ban .sub_nav li a{
	display: block;
	padding: 20px 0;
	font-size: 18px;
}
.com_ban .sub_nav li:hover a, .com_ban .sub_nav li.active a {
    color: #ACCE22;
}
.com_ban .sub_nav li:after {
    position: absolute;
    content: '';
    width: 0;
    height: 4px;
    top: 0;
    left: 0;
    background: #ACCE22;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}
.com_ban .sub_nav li:hover:after, .com_ban .sub_nav li.active:after {
    width: 100%;
}

/* 首页标题 */
.ind_tit {
	position: relative;
	text-align: center;
}

.ind_tit h3 {
	font-size: 36px;
	line-height: 1;
	color: #343434;
	font-weight: 700;
	padding-bottom: 0.25rem;
	text-transform: uppercase;
}

.ind_tit::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -37px;
	width: 74px;
	height: 2px;
	background-color: #ACCE22;
}

/* 关于我们标题 */
.ab_tit{
	text-align: left;
	margin-bottom: 0.1rem;
}
.ab_tit h3{
	font-size: 32px;
	line-height: 1.3;
	color: #333;
	text-transform: capitalize;
}

.ab_tit h3::after {
	content: "";
	display: block;
	width: 45px;
	height: 2px;
	background-color: #ACCE22;
	margin: 0.1rem 0;
}
.ab_tit p{
	font-size: 21px;
	line-height: 1.8;
	color: #666;
	text-transform: uppercase;
}
.ab_tit span{
	display: block;
	width: 9.6rem;
	max-width: 100%;
	font-size: 18px;
	color: #666;
	margin-top: 15px;
	word-break: keep-all;
}



/* page start */
.com_page{
	padding: 0.4rem 0;
}

.com_page a {
	color: #a0a0a0;
	font-size: 13px;
	display: inline-block;
	border: 1px solid #a0a0a0;
	padding: 11px 13px;
	margin: 0 4px;
	letter-spacing: 0.5px;
	/* background-color: #f0f0f0; */
}

.com_page a:hover,
.com_page .page-num-current {
	background-color: #ACCE22;
	color: white;
	border: 1px solid #ACCE22;
}

.com_page p {
	display: inline-block;
	margin: 0 25px 0 16px;
}
.page_p{
	line-height: 60px;
	font-size: 18px;
	color: #7e7e7e;
}
/* page end */


/* 公共MORE */
.com_more {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	height: 46px;
	border-radius: 23px;
	color: white;
	background-color: #ACCE22;
	border: 1px solid #ACCE22;
	text-align: center;
	font-size: 18px;
	text-transform: uppercase;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.com_more:hover {
	color: #ACCE22;
	background-color: white;
}

/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {

	/* 1600 × (900/1024/1200) */
	.zdHead_nav li {
		padding: 0 0.28rem;
	}
}

@media all and (max-width:1599px) {

	/* 1440 × (900/1050) */
	.zdHead_nav li {
		padding: 0 0.2rem;
	}

	.zdHead .nav_r {
		margin-left: 0.2rem;
	}
}

@media all and (max-width:1439px) {

	/* 1360 × (768) */
	.zdHead_logo img {
		height: 32px;
	}

	.zdHead_nav a {
		font-size: 20px;
	}
	
	
}

@media all and (max-width:1359px) {
	/* 1280 × (800/854/1024) */
}

@media all and (max-width:1279px) {

	/* 1152 × (864) */
	.zdHead_nav a {
		font-size: 18px;
	}
	
	
}

@media all and (max-width:1151px) {
	/* 1024 × (600/768) */
	.head_r {
		display: none;
	}
	.headMenu{
		display: block;
	}
	.zdHead,.zdHead.pro_on{
		padding: 0 0 0 4% !important;
		background-color: white;
	}
	
	.zdHead_box{
		height: 60px;
	}
	.head_r{
		margin-right: 30px;
	}
	.zdHead_logo img,.zdHead.on .zdHead_logo img{
		height: 25px;
	}
	.zdHead .search a img{
		height: 20px;
	}
	.mt{
		margin-top: 60px;
	}
	
	.com_ban{
		height: 36vh;
	}
	.com_ban .txt{
		padding-top: 20%;
	}
	
	.Footer-container{
		flex-wrap: wrap;
	}
	.foot_item2{
		display: none;
	}
	.foot_item1,.foot_item3{
		width: 100%;
		margin: 0;
		text-align: center;
	}
	.foot_item1 .foot_logo{
		margin-bottom: 0.2rem;
		text-align: center;
	}
	.foot_item1 .foot_logo img{
		height: 24.5px;
		display: inline-block;
	}
	.foot_item1 p{
		width: auto;
		display: block;
	}
	.foot_item3 ul{
		display: block;
		width: auto;
	}
	.foot_item3 ul li{
		margin: 0 0.1rem;
	}
	.foot_item3 ul li a i{
		width: 0.6rem;
		height: 0.6rem;
		font-size: 0.4rem;
	}
	
	.mobile-inner-header-icon{
		display: block;
	}
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {
	/* 平板设备 720 适配 */
	
	.pc {
		display: none;
	}
	
	.mb {
		display: block;
	}
	
	
	.com_more{
		width: 120px;
		height: 32px;
		line-height: 32px;
		font-size: 16px;
	}
	
	.ind_tit h3{
		font-size: 32px;
	}
	
	
	.foot_item3 .contact_us{
		width: 2.4rem;
		height: 0.6rem;
		line-height: 0.6rem;
		font-size: 16px;
	}
	
	.Copyright .fl,.Copyright .fr{
		width: 100%;
		text-align: center;
	}
	.Copyright .fr{
		margin-top: 0.1rem;
	}
	
	.ab_tit span{
		width: 100%;
		font-size: 16px;
	}
	
	.page_p{
		font-size: 16px;
		line-height: 0.8rem;
	}
}

@media all and (max-width:768px) {
	
	.ind_tit h3{
		font-size: 24px;
	}
}

@media all and (max-width:640px) {
	/* 移动终端以上 360 适配 */
	.foot_item1 p{
		font-size: 14px;
	}
	.Copyright{
		font-size: 14px;
	}
}

@media all and (max-width:480px) {}

@media all and (max-width:420px) {}

@media all and (max-width:376px) {}
</pre></body></html>